<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>跳转提示</title>
<link rel="stylesheet" href="/Public/layui/css/layui.css"  media="all">
<style type="text/css">
body{ padding: 0; margin: 0;background: #fff; font-family: '微软雅黑'; color: #333; font-size: 16px; }
.system-message{ padding: 50px; width:460px; height:120px; margin:auto; position:absolute; top:0;left:0;bottom:0;right:0;text-align:center; border:1px dashed #dcdcdc; background-color:#f9f9f9;}
.system-message h1{ font-size: 100px; font-weight: normal; line-height: 120px; margin-bottom: 12px; }
.system-message .jump{ padding-top: 10px}
.system-message .jump a{ color: #333;}
.system-message .success,.system-message .error{ line-height: 1.8em; font-size: 36px }
.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
</style>
<script type="text/javascript" src="/Public/layui/layui.js"></script>
</head>
<body>
<script type="text/javascript">
layui.use('layer', function(){
  var layer = layui.layer;
	var href = 'javascript:history.back(-1);';
	var wait = 3;
	layer.open({
		move:false,
		title:'提示(' + wait + '秒)',
				icon:2,
		content:'页面不存在',
				success:function(layero, index){
			var fn = function() {
				layer.title('提示(' + wait + '秒)', index);
				if(!wait) {layer.close(index); window.location.href = href;} wait--;
			};setInterval(fn, 1000);
	  },end:function(){
	  	window.location.href = href;
	  }
	});
})
</script>
</body>
</html>